home *** CD-ROM | disk | FTP | other *** search
/ Pornodelic / Pornodelic - Disc 2.iso / pc / data / script.cst / 00002_ÅwÇaÇfÇlçƒêðÅBÅx.ls < prev    next >
Encoding:
Text File  |  1998-03-05  |  1.2 KB  |  42 lines

  1. global gTotalSoundNum   --テ…wテァテ。テ・vテ」ツサテェテョテ③テ…x
  2. global gSoundMuteFlg    --テ…wテ欝テ右テ嘉ャテ栄テ円テ嘉姪…[テ曳テ液テ嘉「テ碓テ③テ…x
  3. global gSoundLoopFlag   --テ…wテ欝テ右テ嘉ャテ栄テ嘉」テ…[テ益テ液テ嘉「テ碓テ③テ…x
  4. global gBGM             --テ…wテ欝テ右テ嘉ャテ栄テ液テ院テ韻テ嘉」テアツコテ、iテョ[テッナ禿ェテョテ③テ…x
  5. global gMusCount        --テ…wテ欝テ右テ嘉ャテ栄テ液テ院テ韻テ嘉」テ雨テ右テ嘉ャテ曳テ③テ…x
  6.  
  7. on PlaySound gTotalSoundNum
  8.   -- テゥgテ‡ツ「テッツセ -------------
  9.   -- PlaySound テ」ツサテェテョ
  10.   --       テ…wテ‡aテ‡fテ‡lテァニ津ェテーテ③テ…x
  11.   
  12.   if gSoundMuteFlg = 0 then
  13.     SoundCheck gTotalSoundNum
  14.   end if
  15. end PlaySound
  16.  
  17. on SoundCheck gTotalSoundNum
  18.   -- テゥgテ‡ツ「テッツセ -------------
  19.   -- テ敖ィテスニ’ or テηセツ絶\” テ‡窶ヲテュuテ‡ツ「テ‡ニ津‡ツョテ‡ツ催③
  20.   --       テ…wテ」ツサテ‡ツ敕嘉」テ…[テ益テ‡ナステ‡テセテ‡テ暗③テ…x
  21.   
  22.   if not soundBusy(1) then
  23.     if gSoundLoopFlag = 0 then
  24.       SoundNumLoop gTotalSoundNum
  25.     end if
  26.     puppetSound gBGM
  27.     updateStage
  28.   end if
  29. end SoundCheck
  30.  
  31. on SoundNumLoop gTotalSoundNum
  32.   -- テゥgテ‡ツ「テッツセ -------------
  33.   -- SoundNumLoop テ」ツサテェテョ
  34.   --       テ…wテ「テセテ、yテ‡ツ敕ゥテシテ…Xテッナ禿‡ツカテ‡テ暗③テ…x
  35.   
  36.   put gMusCount +1 into gMusCount
  37.   if gMusCount = gTotalSoundNum+1 then
  38.     set gMusCount = 1
  39.   end if
  40.   set gBGM = "S" & string (gMusCount)
  41. end SoundNumLoop
  42.